home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 4
/
Apprentice-Release4.iso
/
Source Code
/
C
/
Frameworks
/
Grant's CGI Framework 1.0b12
/
Util
/
DebugUtil.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-12-09
|
493b
|
29 lines
#pragma once
/*****
*
* DebugUtil.h
*
* This is a support file for "Grant's CGI Framework".
* Please see the license agreement that accompanies the distribution package
* for licensing details.
*
* Copyright ©1995 by Grant Neufeld
* grant@acm.com
* http://arpp1.carleton.ca/grant/
*
*****/
#include "MyConfiguration.h"
#define kForceAssert false
#if kCompileWithAssertions
void my_assert ( Boolean, const StringPtr );
#else
#define my_assert(a,b)
#endif
/*** EOF ***/